NOT

Syntax: NOT x
Location: QL ROM

NOT is an operator which returns a value depending on the operand - brackets are not needed around the operand.

NOT returns 1 if the operand is zero or 0 in any other case.

Example:
IF NOT lamps THEN PRINT "No lamps are required."
